// coroutine experimental header

/***
*coroutine
*
*       Copyright (c) Microsoft Corporation. All rights reserved.
*
*       Purpose: Library support of coroutines
*       http://open-std.org/JTC1/SC22/WG21/docs/papers/2015/p0057r0.pdf
*
*       [Public]
*
****/
#pragma once
#ifndef _EXPERIMENTAL_COROUTINE_
#define _EXPERIMENTAL_COROUTINE_
#ifndef RC_INVOKED

#include <experimental/resumable>

#endif /* RC_INVOKED */
#endif /* _EXPERIMENTAL_COROUTINE_ */
